home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 August / chip-cd_2004_08.zip / 08 / Internet / Shareaza 2.0 / Shareaza_2.0.0.0.exe / Schemas / spreadsheet.xsd < prev    next >
Extensible Markup Language  |  2003-01-13  |  2KB  |  72 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Document:Spreadsheet XML Framework; 1.4; Jonathan C. Nilson -->
  3.  
  4. <schema targetNamespace="http://www.shareaza.com/schemas/spreadsheet.xsd" version="1.0" xmlns="http://www.w3.org/2001/XMLSchema">
  5.  
  6.     <element name="spreadsheets">
  7.         <complexType>
  8.             <element name="spreadsheet" type="spreadsheetType" minOccurs="1" maxOccurs="unbounded"/>
  9.         </complexType>
  10.     </element>     
  11.     
  12.     <complexType name="spreadsheetType">
  13.         <all>
  14.             <attribute name="title" type="string"/>
  15.             <attribute name="author" type="string"/>
  16.             <attribute name="subject" type="string"/>
  17.             <attribute name="keywords" type="string"/>
  18.             <attribute name="abstract" type="string"/>
  19.             <attribute name="initials" type="string"/>
  20.             <attribute name="copyright" type="string"/>
  21.             <attribute name="version" type="string"/>
  22.             <attribute name="revision" type="string"/>
  23.  
  24.             <attribute name="type">
  25.                 <simpleType base="string">
  26.                     <enumeration value="Catalog"/>
  27.                     <enumeration value="Finances"/>
  28.                     <enumeration value="Inventory"/>
  29.                     <enumeration value="List"/>
  30.                 </simpleType>
  31.             </attribute>
  32.  
  33.             <attribute name="format">
  34.                 <simpleType base="string">
  35.                     <enumeration value="Adobe Acrobat PDF"/>
  36.                     <enumeration value="ANSI Text"/>
  37.                     <enumeration value="ANSI Delimited Text"/>
  38.                     <enumeration value="ANSI Generic Word Processor"/>
  39.                     <enumeration value="ASCII Text"/>
  40.                     <enumeration value="ASCII Delimited Text"/>
  41.                     <enumeration value="ASCII Generic Word Processor"/>
  42.                     <enumeration value="Corel Quattro Pro"/>
  43.                     <enumeration value="Microsoft Excel 3.0"/>
  44.                     <enumeration value="Microsoft Excel 4.0"/>
  45.                     <enumeration value="Lotus 123"/>
  46.                     <enumeration value="Navy DIF Standard"/>
  47.                     <enumeration value="Novell Quattro Pro"/>
  48.                     <enumeration value="Openoffice.org Spreadsheet"/>
  49.                     <enumeration value="Openoffice.org Spreadsheet Template"/>
  50.                     <enumeration value="Spreadsheet DIF"/>
  51.                 </simpleType>
  52.             </attribute>
  53.  
  54.             <attribute name="formatVersion" type="string"/>
  55.             <attribute name="records" type="long"/>
  56.                 <attribute name="link" type="uriReference"/>
  57.             <attribute name="comments">
  58.                 <simpleType base="string">
  59.                     <maxInclusive value="100"/>
  60.                 </simpleType>
  61.             </attribute>
  62.             <attribute name="SHA1" type="string"/>
  63.         </all>
  64.     </complexType>
  65.  
  66. </schema>
  67.  
  68.  
  69.  
  70.  
  71.  
  72.